home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / text0064.txt < prev    next >
Encoding:
Text File  |  1994-09-20  |  495 b   |  18 lines

  1. >If OpenFile(0,"s:startup-sequence")
  2. >    Maxlen in$,30
  3. >    Fields 0,in$
  4. >    Get 0,0
  5. >    DefaultOutput
  6. >    Nprint in$
  7. >    CloseFile 0
  8. >EndIf
  9. >MouseWait:End
  10. >
  11. Hiya.  Well, the only thing that I can see wrong with this program
  12. is in the second line 'Maxlen in$,30' should be 'Maxlen in$=30'.
  13. One other thing that I'm concerned about is openning a text file as
  14. a random access file.  Shouldn't you use sequencial access? Try it
  15. out, this little program should not be that much of a problem.
  16.  
  17.  
  18.